over-strictness - Übersetzung nach italienisch
DICLIB.COM
KI-basierte Sprachtools
Geben Sie ein Wort oder eine Phrase in einer beliebigen Sprache ein 👆
Sprache:     

Übersetzung und Analyse von Wörtern durch künstliche Intelligenz

Auf dieser Seite erhalten Sie eine detaillierte Analyse eines Wortes oder einer Phrase mithilfe der besten heute verfügbaren Technologie der künstlichen Intelligenz:

  • wie das Wort verwendet wird
  • Häufigkeit der Nutzung
  • es wird häufiger in mündlicher oder schriftlicher Rede verwendet
  • Wortübersetzungsoptionen
  • Anwendungsbeispiele (mehrere Phrasen mit Übersetzung)
  • Etymologie

over-strictness - Übersetzung nach italienisch

Strictness Analysis

over-strictness      
eccessiva severità
over and over         
WIKIMEDIA DISAMBIGUATION PAGE
Over And Over; Over and Over (single); Over And Over (album); Over and Over (song); Over and Over (album); Over & over; Over and Over (disambiguation)
ripetutamente, piu e piu volte
bind over         
LEGAL POWER OF CRIMINAL COURTS IN ENGLAND AND WALES
Bind over for sentence; Bound over; Bind over; Bindover; Binding over order
obbligare, impegnare, vincolare

Definition

game over
informal
said when a situation is regarded as hopeless.

Wikipedia

Strictness analysis

In computer science, strictness analysis refers to any algorithm used to prove that a function in a non-strict functional programming language is strict in one or more of its arguments. This information is useful to compilers because strict functions can be compiled more efficiently. Thus, if a function is proven to be strict (using strictness analysis) at compile time, it can be compiled to use a more efficient calling convention without changing the meaning of the enclosing program.

Note that a function f is said to diverge if it returns { } {\displaystyle \{\bot \}} : operationally, that would mean that f either causes abnormal termination of the enclosing program (e.g., failure with an error message) or that it loops infinitely. The notion of "divergence" is significant because a strict function is one that always diverges when given an argument that diverges, whereas a lazy (or non-strict) function is one that may or may not diverge when given such an argument. Strictness analysis attempts to determine the "divergence properties" of functions, which thus identifies some functions that are strict.